学生成绩管理系统实现
.
└── StudentScoreManager01
├── StudentScoreManager01.iml
├── pom.xml
├── src
│ ├── main
│ │ ├── java
│ │ │ └── com
│ │ │ └── sxl
│ │ │ └── studentscoremanager01
│ │ │ ├── Controller
│ │ │ │ ├── LoginController.java
│ │ │ │ ├── MainController.java
│ │ │ │ ├── ScoreController.java
│ │ │ │ └── StudentController.java
│ │ │ ├── StudentScoreManager01Application.java
│ │ │ ├── Test
│ │ │ │ ├── EasyExcelTest.java
│ │ │ │ ├── ExcelReadTest.java
│ │ │ │ └── ExcelWriteTest.java
│ │ │ ├── entitys
│ │ │ │ ├── Chart.java
│ │ │ │ ├── DemoData.java
│ │ │ │ ├── Manger.java
│ │ │ │ ├── Score.java
│ │ │ │ └── Student.java
│ │ │ ├── mapper
│ │ │ │ ├── ManagerMapper.java
│ │ │ │ ├── ScoreMapper.java
│ │ │ │ └── StudentMapper.java
│ │ │ ├── service
│ │ │ │ ├── ManagerService.java
│ │ │ │ ├── ScoreService.java
│ │ │ │ └── StudentService.java
│ │ │ └── utils
│ │ └── resources
│ │ ├── application.properties
│ │ ├── application.yaml
│ │ ├── mapper
│ │ │ ├── ManagerMapper.xml
│ │ │ ├── ScoreMapper.xml
│ │ │ └── StudentMapper.xml
│ │ ├── public
│ │ ├── static
│ │ │ ├── css
│ │ │ │ ├── font-awesome.min.css
│ │ │ │ └── style.css
│ │ │ ├── favicon.ico
│ │ │ ├── fonts
│ │ │ │ ├── FontAwesome.otf
│ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ └── fontawesome-webfont.woff2
│ │ │ └── images
│ │ │ ├── 1.png
│ │ │ └── undraw_Work_time_re_hdyv.svg
│ │ └── templates
│ │ ├── AllChart.html
│ │ ├── Score.html
│ │ ├── index.html
│ │ ├── main.html
│ │ ├── modify.html
│ │ └── scoreModify.html
│ └── test
│ └── java
│ └── com
│ └── sxl
│ └── studentscoremanager01
│ └── StudentScoreManager01ApplicationTests.java
└── target
├── StudentScoreManager01-0.0.1-SNAPSHOT.jar
├── StudentScoreManager01-0.0.1-SNAPSHOT.jar.original
├── classes
│ ├── application.properties
│ ├── application.yaml
│ ├── com
│ │ └── sxl
│ │ └── studentscoremanager01
│ │ ├── Controller
│ │ │ ├── LoginController.class
│ │ │ ├── MainController.class
│ │ │ ├── ScoreController.class
│ │ │ └── StudentController.class
│ │ ├── StudentScoreManager01Application.class
│ │ ├── Test
│ │ │ ├── EasyExcelTest.class
│ │ │ ├── ExcelReadTest.class
│ │ │ └── ExcelWriteTest.class
│ │ ├── entitys
│ │ │ ├── Chart.class
│ │ │ ├── DemoData.class
│ │ │ ├── Manger.class
│ │ │ ├── Score.class
│ │ │ └── Student.class
│ │ ├── mapper
│ │ │ ├── ManagerMapper.class
│ │ │ ├── ScoreMapper.class
│ │ │ └── StudentMapper.class
│ │ └── service
│ │ ├── ManagerService.class
│ │ ├── ScoreService.class
│ │ └── StudentService.class
│ ├── mapper
│ │ ├── ManagerMapper.xml
│ │ ├── ScoreMapper.xml
│ │ └── StudentMapper.xml
│ ├── static
│ │ ├── css
│ │ │ ├── font-awesome.min.css
│ │ │ └── style.css
│ │ ├── favicon.ico
│ │ ├── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ └── fontawesome-webfont.woff2
│ │ └── images
│ │ ├── 1.png
│ │ └── undraw_Work_time_re_hdyv.svg
│ └── templates
│ ├── AllChart.html
│ ├── Score.html
│ ├── index.html
│ ├── main.html
│ ├── modify.html
│ └── scoreModify.html
├── generated-sources
│ └── annotations
├── generated-test-sources
│ └── test-annotations
├── maven-archiver
│ └── pom.properties
├── maven-status
│ └── maven-compiler-plugin
│ ├── compile
│ │ └── default-compile
│ │ ├── createdFiles.lst
│ │ └── inputFiles.lst
│ └── testCompile
│ └── default-testCompile
│ ├── createdFiles.lst
│ └── inputFiles.lst
├── surefire-reports
│ ├── 2021-06-11T16-04-09_767-jvmRun1.dump
│ ├── 2021-06-13T21-29-49_886-jvmRun1.dump
│ ├── 2021-06-14T16-00-31_105-jvmRun1.dump
│ ├── 2021-06-14T16-27-04_864-jvmRun1.dump
│ ├── 2021-06-14T18-26-49_047-jvmRun1.dump
│ ├── TEST-com.sxl.studentscoremanager01.ExcelWriteTest.xml
│ ├── TEST-com.sxl.studentscoremanager01.StudentScoreManager01ApplicationTests.xml
│ ├── com.sxl.studentscoremanager01.ExcelWriteTest.txt
│ └── com.sxl.studentscoremanager01.StudentScoreManager01ApplicationTests.txt
└── test-classes
└── com
└── sxl
└── studentscoremanager01
└── StudentScoreManager01ApplicationTests.class
58 directories, 102 files
评论